home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Securite / Password Safe / pwsafe-3.35.exe / pwsafe.xsl < prev    next >
Extensible Markup Language  |  2014-07-26  |  2KB  |  65 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?><xsl:stylesheet version="1.0"
  2. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="/">
  3. <!--
  4.   Copyright (c) 2003-2014 Rony Shapiro <ronys@users.sourceforge.net>.
  5.   All rights reserved. Use of the code is allowed under the
  6.   Artistic License 2.0 terms, as specified in the LICENSE file
  7.   distributed with this code, or available from
  8.   http://www.opensource.org/licenses/artistic-license-2.0.php
  9. -->
  10.  
  11. <html>
  12.     <body>
  13.         <h2>PasswordSafe Database</h2>
  14.         <table border="1">
  15.             <tr>
  16.                 <th align="left">Group</th>
  17.                 <th align="left">Title</th>
  18.                 <th align="left">Username</th>
  19.                 <th align="left">Password</th>
  20.                 <th align="left">URL</th>
  21.                 <th align="left">Autotype</th>
  22.                 <th align="left">Creation Time</th>
  23.                 <th align="left">Last Access Time</th>
  24.                 <th align="left">Password Expiry Time</th>
  25.                 <th align="left">Password Mod. Time</th>
  26.                 <th align="left">Record Mod. Time</th>
  27.                 <th align="left">Notes</th>
  28.                 <th align="left">Password History Status</th>
  29.                 <th align="left">Maximum Saved</th>
  30.                 <th align="left">Current Number</th>
  31.             </tr>
  32.             <xsl:for-each select="passwordsafe/entry">
  33.                 <xsl:sort select="group"/>
  34.                 <xsl:sort select="title"/>
  35.                 <xsl:sort select="username"/>
  36.                 <xsl:sort select="url"/>
  37.                 <xsl:sort select="ctime"/>
  38.                 <xsl:sort select="atime"/>
  39.                 <xsl:sort select="ltime"/>
  40.                 <xsl:sort select="pmtime"/>
  41.                 <xsl:sort select="rmtime"/>
  42.                 <xsl:sort select="notes"/>
  43.                 <tr>
  44.                     <td><xsl:value-of select="group"/></td>
  45.                     <td><xsl:value-of select="title"/></td>
  46.                     <td><xsl:value-of select="username"/></td>
  47.                     <td><xsl:value-of select="password"/></td>
  48.                     <td><xsl:value-of select="url"/></td>
  49.                     <td><xsl:value-of select="autotype"/></td>
  50.                     <td><xsl:value-of select="ctime"/></td>
  51.                     <td><xsl:value-of select="atime"/></td>
  52.                     <td><xsl:value-of select="ltime"/></td>
  53.                     <td><xsl:value-of select="pmtime"/></td>
  54.                     <td><xsl:value-of select="rmtime"/></td>
  55.                     <td><xsl:value-of select="notes"/></td>
  56.                     <td><xsl:value-of select="status"/></td>
  57.                     <td><xsl:value-of select="max"/></td>
  58.                     <td><xsl:value-of select="num"/></td>
  59.                 </tr>
  60.             </xsl:for-each>
  61.         </table>
  62.     </body>
  63.     </html>
  64. </xsl:template></xsl:stylesheet>
  65.